projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c031b2
)
(calendar-goto-julian-date): Use assoc-string instead of
author
Glenn Morris
<rgm@gnu.org>
Thu, 19 Feb 2004 01:18:23 +0000
(
01:18
+0000)
committer
Glenn Morris
<rgm@gnu.org>
Thu, 19 Feb 2004 01:18:23 +0000
(
01:18
+0000)
assoc-ignore-case.
lisp/calendar/cal-julian.el
patch
|
blob
|
history
diff --git
a/lisp/calendar/cal-julian.el
b/lisp/calendar/cal-julian.el
index ac422602dc4a434ac41f8e64897f8edcf8a2c1c9..67fb8515b24b621a9f16e9fc62b464dba107cfc6 100644
(file)
--- a/
lisp/calendar/cal-julian.el
+++ b/
lisp/calendar/cal-julian.el
@@
-115,12
+115,12
@@
Driven by the variable `calendar-date-display-form'."
today))))))
(month-array calendar-month-name-array)
(completion-ignore-case t)
- (month (cdr (assoc-
ignore-case
+ (month (cdr (assoc-
string
(completing-read
"Julian calendar month name: "
(mapcar 'list (append month-array nil))
nil t)
- (calendar-make-alist month-array 1))))
+ (calendar-make-alist month-array 1)
t
)))
(last
(if (and (zerop (% year 4)) (= month 2))
29